home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- global givTextRegColor, givTextHiliteColor, givState, givLastIndexLine, givCurrIndexLine, givSelectCleanupFlag, givSELECTFORESPRITE, givSELECTBACKSPRITE
- if the controlDown then
- set the selectType of givState to #none
- set givSelectCleanupFlag to 1
- go("ivMain")
- set the visible of sprite givSELECTFORESPRITE to 0
- set the visible of sprite givSELECTBACKSPRITE to 0
- set the castNum of sprite givSELECTFORESPRITE to the number of cast "nullcast"
- set the castNum of sprite givSELECTBACKSPRITE to the number of cast "nullcast"
- dontPassEvent()
- exit
- end if
- set mLine to the mouseLine
- set givLastIndexLine to -1
- MessagePut("entering" && the selectType of givState && "selectTextBox callback, mouseLine: " & mLine)
- if the doubleClick and (mLine <> -1) then
- MessagePut("double-click detected")
- dontPassEvent()
- exit
- end if
- if the selectType of givState = #topic then
- set castNam to "TopicSelectText"
- else
- set castNam to "AthleteSelectText"
- end if
- if (mLine <> -1) and (the mouseCast = the number of cast castNam) then
- set executeOnce to 0
- set the foreColor of cast castNam to givTextRegColor
- repeat while the stillDown or (executeOnce = 0)
- if the mouseCast = the number of cast castNam then
- set mLine to the mouseLine
- if mLine >= the number of lines in field castNam then
- set mLine to the number of lines in field castNam - 1
- end if
- if (mLine <> givLastIndexLine) and (mLine <> -1) then
- set the foreColor of line givLastIndexLine of field castNam to givTextRegColor
- set the foreColor of line mLine of field castNam to givTextHiliteColor
- set givLastIndexLine to mLine
- if the selectType of givState = #topic then
- set the topicSelectListPtr of givState to mLine
- end if
- if the selectType of givState = #athlete then
- set the athleteSelectListPtr of givState to mLine
- end if
- set executeOnce to 1
- end if
- end if
- end repeat
- set givLastIndexLine to mLine
- set givCurrIndexLine to givLastIndexLine
- else
- end if
- if the selectType of givState = #topic then
- DoTopicSelect(the topicSelectListPtr of givState)
- else
- DoAthleteSelect(the athleteSelectListPtr of givState)
- end if
- end
-